Package-level declarations

Types

Link copied to clipboard
data class SurveyButton(val text: String?, val value: Int?)
Link copied to clipboard
data class SurveyContent(val id: Int?, val uuid: String?, val sendingId: Long?, var questions: List<SurveyQuestion>?, val hideAfter: Long?, val blockInput: Boolean?)
Link copied to clipboard
open class SurveyQuestion(var id: Long? = null, var sendingId: Long? = null, var text: String? = null, var displayText: String? = null, var buttons: List<SurveyButton>? = null)